home *** CD-ROM | disk | FTP | other *** search
/ APDL Eductation Resources / APDL Eductation Resources.iso / earthmap / _earthmap / maps / getpar / h / fastpar
Encoding:
Text File  |  1989-04-01  |  228 b   |  10 lines

  1. /* added timestamp 3-8-86  stew */
  2. typedef struct hash_dummy {
  3.     struct hash_dummy *next;
  4.     char *tag; int tlen;
  5.     char *val; int vlen;
  6.     int timestamp;
  7.     } hash_item;
  8.  
  9. typedef union { int *i; float *f; double *g ; char *s; } MIXED;
  10.